home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-05-10 | 415 b | 20 lines | [TEXT/PJMM] |
- unit GB3D;
- { GB3D is the specific interface for the GeoBench. It extends the generic }
- { 3D object to a class that takes advantages of the structures found in }
- { the geobench }
-
-
- interface
- uses
- Matrix, GrafSysCore, GrafSysScreen;
-
- type
- TGBPolygon3D = object(TSGenericObject3D) { polygon connects all points sequentially and back to the first }
- procedure Draw;
- override;
- end;
-
- implementation
-
-
- end.